home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 2 / CU Amiga Magazine's Super CD-ROM 02 (1996)(EMAP Images)(GB)[!][issue 1996-04].iso / magazine / amiga_e / amigae.june.archive / 000031_crash!minyos.xx….OZ.AU!s924723_Tue, 8 Jun 93 19:48:52 PST.msg < prev    next >
Text File  |  1993-08-31  |  2KB  |  41 lines

  1. Received: by bkhouse.cts.com (V1.16/Amiga)
  2.     id AA00000; Tue, 8 Jun 93 19:48:52 PST
  3. Received: from peladon.rmit.OZ.AU by crash.cts.com with smtp
  4.     (Smail3.1.28.1 #15) id m0o3Fad-0000D9C; Tue, 8 Jun 93 19:08 PDT
  5. Received: from minyos.xx.rmit.OZ.AU by peladon.rmit.OZ.AU with SMTP id AA06185
  6.   (5.65c/IDA-1.4.4 for <amigae@bkhouse.cts.com>); Wed, 9 Jun 1993 12:08:20 +1000
  7. Received: by minyos.xx.rmit.oz.au
  8. Message-Id: <9306090208.5191@minyos.xx.rmit.oz.au>
  9. Date: Wed, 9 Jun 1993 12:08:15 +1000 (EST)
  10. X-Mailer: ELM [version 2.4 PL21]
  11. Mime-Version: 1.0
  12. Content-Type: text/plain; charset=US-ASCII
  13. Content-Transfer-Encoding: 7bit
  14. Content-Length: 815
  15. From: s924723@minyos.xx.rmit.OZ.AU (Son Huu Le)
  16. To: amigae@bkhouse.cts.com
  17. Subject: Link Lists and Lists
  18.  
  19.  
  20. Does anyone know if you can use MapList, ForAll, Exists list functions on
  21. linked lists? Also how are linked lists stored in memory and finally, what's
  22. the difference between these two examples:
  23.  
  24. 1. d:=Link(c,NIL)                2. d:=Link(d,NIL)
  25.    d:=Link(b,c)                     d:=Link(c,d)
  26.    d:=Link(a,b)                     d:=Link(b,d)
  27.                     d:=Link(a,d)
  28.  
  29. They both produce the same result assuming a, b, c are all strings.
  30. Also can numbers be linked? I couldn't. And lastly, if a, b, c are initialised
  31. by New() and linked.. How can you free them? I think that's the problem. If left
  32. alone, the program gurus upon exit.
  33.  
  34. One for thing.. How can you read/write OBJECTs with uneven strings?
  35. eg.  OBJECT phonebook
  36.        name[15]:ARRAY
  37.        address[40]:ARRAY
  38.      ENDOBJECT
  39.  
  40. Any help appreciated.
  41. Son Le